home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20041116-20060924 / 000088_fdc@columbia.edu_Tue Apr 19 18:14:36 2005.msg < prev    next >
Internet Message Format  |  2006-09-27  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Using Kermit for Packet Radio
  5. Date: 19 Apr 2005 22:13:23 GMT
  6. Organization: Columbia University
  7. Lines: 23
  8. Message-ID: <slrnd6b0k3.a3s.fdc@sesame.cc.columbia.edu>
  9. References: <ufCdneC8DMYv1PnfRVn-jg@comcast.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1113948803 3177 128.59.59.56 (19 Apr 2005 22:13:23 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 19 Apr 2005 22:13:23 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15324
  17.  
  18. On 2005-04-18, Robert Ramsey <ramseyrt@comcast.net> wrote:
  19. : I'm trying to use kermit to interface my Kantronics KPC3+ (Radio Modem, TNC)
  20. : on and SGI Octane running Irix 6.5.27.  I perform the following:
  21. :
  22. : set line /dev/ttyd2
  23. : set speed 9600
  24. : set flow /direct-serial
  25. : set carrier-watch off
  26. : connect
  27. :
  28. : The prompt from my TNC shows up and I can run commands such as "help" on my
  29. : TNC.  However, every line overwrites the existing line.  The behavior I'm
  30. : expecting is that every new line will have it's own line and not overwrite
  31. : the existing line.  I believe this has something to do with kermit not
  32. : interpreting the carriage returns or line feeds correctly?  This exact same
  33. : behavior exhibits itself when I "cu -s 9600 -l /dev/ttyd2" from a command
  34. : line.  What can I do to make this work?
  35. :
  36. Try this:
  37.  
  38.   set terminal cr-display crlf
  39.  
  40. - Frank